home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / cmd.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  14KB  |  451 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. '''A generic class to build line-oriented command interpreters.
  5.  
  6. Interpreters constructed with this class obey the following conventions:
  7.  
  8. 1. End of file on input is processed as the command \'EOF\'.
  9. 2. A command is parsed out of each line by collecting the prefix composed
  10.    of characters in the identchars member.
  11. 3. A command `foo\' is dispatched to a method \'do_foo()\'; the do_ method
  12.    is passed a single argument consisting of the remainder of the line.
  13. 4. Typing an empty line repeats the last command.  (Actually, it calls the
  14.    method `emptyline\', which may be overridden in a subclass.)
  15. 5. There is a predefined `help\' method.  Given an argument `topic\', it
  16.    calls the command `help_topic\'.  With no arguments, it lists all topics
  17.    with defined help_ functions, broken into up to three topics; documented
  18.    commands, miscellaneous help topics, and undocumented commands.
  19. 6. The command \'?\' is a synonym for `help\'.  The command \'!\' is a synonym
  20.    for `shell\', if a do_shell method exists.
  21. 7. If completion is enabled, completing commands will be done automatically,
  22.    and completing of commands args is done by calling complete_foo() with
  23.    arguments text, line, begidx, endidx.  text is string we are matching
  24.    against, all returned matches must begin with it.  line is the current
  25.    input line (lstripped), begidx and endidx are the beginning and end
  26.    indexes of the text being matched, which could be used to provide
  27.    different completion depending upon which position the argument is in.
  28.  
  29. The `default\' method may be overridden to intercept commands for which there
  30. is no do_ method.
  31.  
  32. The `completedefault\' method may be overridden to intercept completions for
  33. commands that have no complete_ method.
  34.  
  35. The data member `self.ruler\' sets the character used to draw separator lines
  36. in the help messages.  If empty, no ruler line is drawn.  It defaults to "=".
  37.  
  38. If the value of `self.intro\' is nonempty when the cmdloop method is called,
  39. it is printed out on interpreter startup.  This value may be overridden
  40. via an optional argument to the cmdloop() method.
  41.  
  42. The data members `self.doc_header\', `self.misc_header\', and
  43. `self.undoc_header\' set the headers used for the help function\'s
  44. listings of documented functions, miscellaneous topics, and undocumented
  45. functions respectively.
  46.  
  47. These interpreters use raw_input; thus, if the readline module is loaded,
  48. they automatically support Emacs-like command history and editing features.
  49. '''
  50. import string
  51. __all__ = [
  52.     'Cmd']
  53. PROMPT = '(Cmd) '
  54. IDENTCHARS = string.ascii_letters + string.digits + '_'
  55.  
  56. class Cmd:
  57.     """A simple framework for writing line-oriented command interpreters.
  58.  
  59.     These are often useful for test harnesses, administrative tools, and
  60.     prototypes that will later be wrapped in a more sophisticated interface.
  61.  
  62.     A Cmd instance or subclass instance is a line-oriented interpreter
  63.     framework.  There is no good reason to instantiate Cmd itself; rather,
  64.     it's useful as a superclass of an interpreter class you define yourself
  65.     in order to inherit Cmd's methods and encapsulate action methods.
  66.  
  67.     """
  68.     prompt = PROMPT
  69.     identchars = IDENTCHARS
  70.     ruler = '='
  71.     lastcmd = ''
  72.     intro = None
  73.     doc_leader = ''
  74.     doc_header = 'Documented commands (type help <topic>):'
  75.     misc_header = 'Miscellaneous help topics:'
  76.     undoc_header = 'Undocumented commands:'
  77.     nohelp = '*** No help on %s'
  78.     use_rawinput = 1
  79.     
  80.     def __init__(self, completekey = 'tab', stdin = None, stdout = None):
  81.         """Instantiate a line-oriented interpreter framework.
  82.  
  83.         The optional argument 'completekey' is the readline name of a
  84.         completion key; it defaults to the Tab key. If completekey is
  85.         not None and the readline module is available, command completion
  86.         is done automatically. The optional arguments stdin and stdout
  87.         specify alternate input and output file objects; if not specified,
  88.         sys.stdin and sys.stdout are used.
  89.  
  90.         """
  91.         import sys as sys
  92.         if stdin is not None:
  93.             self.stdin = stdin
  94.         else:
  95.             self.stdin = sys.stdin
  96.         if stdout is not None:
  97.             self.stdout = stdout
  98.         else:
  99.             self.stdout = sys.stdout
  100.         self.cmdqueue = []
  101.         self.completekey = completekey
  102.  
  103.     
  104.     def cmdloop(self, intro = None):
  105.         '''Repeatedly issue a prompt, accept input, parse an initial prefix
  106.         off the received input, and dispatch to action methods, passing them
  107.         the remainder of the line as argument.
  108.  
  109.         '''
  110.         self.preloop()
  111.         if self.use_rawinput and self.completekey:
  112.             
  113.             try:
  114.                 import readline as readline
  115.                 self.old_completer = readline.get_completer()
  116.                 readline.set_completer(self.complete)
  117.                 readline.parse_and_bind(self.completekey + ': complete')
  118.             except ImportError:
  119.                 pass
  120.             except:
  121.                 None<EXCEPTION MATCH>ImportError
  122.             
  123.  
  124.         None<EXCEPTION MATCH>ImportError
  125.         
  126.         try:
  127.             if intro is not None:
  128.                 self.intro = intro
  129.             
  130.             if self.intro:
  131.                 self.stdout.write(str(self.intro) + '\n')
  132.             
  133.             stop = None
  134.             while not stop:
  135.                 None if self.cmdqueue else None<EXCEPTION MATCH>EOFError
  136.                 self.stdout.write(self.prompt)
  137.                 self.stdout.flush()
  138.                 line = self.stdin.readline()
  139.                 if not len(line):
  140.                     line = 'EOF'
  141.                 else:
  142.                     line = line[:-1]
  143.                 line = self.precmd(line)
  144.                 stop = self.onecmd(line)
  145.                 stop = self.postcmd(stop, line)
  146.             self.postloop()
  147.         finally:
  148.             if self.use_rawinput and self.completekey:
  149.                 
  150.                 try:
  151.                     import readline as readline
  152.                     readline.set_completer(self.old_completer)
  153.                 except ImportError:
  154.                     pass
  155.                 except:
  156.                     None<EXCEPTION MATCH>ImportError
  157.                 
  158.  
  159.  
  160.  
  161.     
  162.     def precmd(self, line):
  163.         '''Hook method executed just before the command line is
  164.         interpreted, but after the input prompt is generated and issued.
  165.  
  166.         '''
  167.         return line
  168.  
  169.     
  170.     def postcmd(self, stop, line):
  171.         '''Hook method executed just after a command dispatch is finished.'''
  172.         return stop
  173.  
  174.     
  175.     def preloop(self):
  176.         '''Hook method executed once when the cmdloop() method is called.'''
  177.         pass
  178.  
  179.     
  180.     def postloop(self):
  181.         '''Hook method executed once when the cmdloop() method is about to
  182.         return.
  183.  
  184.         '''
  185.         pass
  186.  
  187.     
  188.     def parseline(self, line):
  189.         """Parse the line into a command name and a string containing
  190.         the arguments.  Returns a tuple containing (command, args, line).
  191.         'command' and 'args' may be None if the line couldn't be parsed.
  192.         """
  193.         line = line.strip()
  194.         if not line:
  195.             return (None, None, line)
  196.         elif line[0] == '?':
  197.             line = 'help ' + line[1:]
  198.         elif line[0] == '!':
  199.             if hasattr(self, 'do_shell'):
  200.                 line = 'shell ' + line[1:]
  201.             else:
  202.                 return (None, None, line)
  203.         
  204.         i = 0
  205.         n = len(line)
  206.         while i < n and line[i] in self.identchars:
  207.             i = i + 1
  208.         cmd = line[:i]
  209.         arg = line[i:].strip()
  210.         return (cmd, arg, line)
  211.  
  212.     
  213.     def onecmd(self, line):
  214.         '''Interpret the argument as though it had been typed in response
  215.         to the prompt.
  216.  
  217.         This may be overridden, but should not normally need to be;
  218.         see the precmd() and postcmd() methods for useful execution hooks.
  219.         The return value is a flag indicating whether interpretation of
  220.         commands by the interpreter should stop.
  221.  
  222.         '''
  223.         (cmd, arg, line) = self.parseline(line)
  224.         if not line:
  225.             return self.emptyline()
  226.         
  227.         if cmd is None:
  228.             return self.default(line)
  229.         
  230.         self.lastcmd = line
  231.         if cmd == '':
  232.             return self.default(line)
  233.         else:
  234.             
  235.             try:
  236.                 func = getattr(self, 'do_' + cmd)
  237.             except AttributeError:
  238.                 return self.default(line)
  239.  
  240.             return func(arg)
  241.  
  242.     
  243.     def emptyline(self):
  244.         '''Called when an empty line is entered in response to the prompt.
  245.  
  246.         If this method is not overridden, it repeats the last nonempty
  247.         command entered.
  248.  
  249.         '''
  250.         if self.lastcmd:
  251.             return self.onecmd(self.lastcmd)
  252.         
  253.  
  254.     
  255.     def default(self, line):
  256.         '''Called on an input line when the command prefix is not recognized.
  257.  
  258.         If this method is not overridden, it prints an error message and
  259.         returns.
  260.  
  261.         '''
  262.         self.stdout.write('*** Unknown syntax: %s\n' % line)
  263.  
  264.     
  265.     def completedefault(self, *ignored):
  266.         '''Method called to complete an input line when no command-specific
  267.         complete_*() method is available.
  268.  
  269.         By default, it returns an empty list.
  270.  
  271.         '''
  272.         return []
  273.  
  274.     
  275.     def completenames(self, text, *ignored):
  276.         dotext = 'do_' + text
  277.         return _[1]
  278.  
  279.     
  280.     def complete(self, text, state):
  281.         """Return the next possible completion for 'text'.
  282.  
  283.         If a command has not been entered, then complete against command list.
  284.         Otherwise try to call complete_<command> to get list of completions.
  285.         """
  286.         if state == 0:
  287.             import readline
  288.             origline = readline.get_line_buffer()
  289.             line = origline.lstrip()
  290.             stripped = len(origline) - len(line)
  291.             begidx = readline.get_begidx() - stripped
  292.             endidx = readline.get_endidx() - stripped
  293.             if begidx > 0:
  294.                 (cmd, args, foo) = self.parseline(line)
  295.             None if cmd == '' else None<EXCEPTION MATCH>AttributeError
  296.             compfunc = self.completenames
  297.             self.completion_matches = compfunc(text, line, begidx, endidx)
  298.         
  299.         
  300.         try:
  301.             return self.completion_matches[state]
  302.         except IndexError:
  303.             return None
  304.  
  305.  
  306.     
  307.     def get_names(self):
  308.         names = []
  309.         classes = [
  310.             self.__class__]
  311.         while classes:
  312.             aclass = classes.pop(0)
  313.             if aclass.__bases__:
  314.                 classes = classes + list(aclass.__bases__)
  315.             
  316.             names = names + dir(aclass)
  317.         return names
  318.  
  319.     
  320.     def complete_help(self, *args):
  321.         return self.completenames(*args)
  322.  
  323.     
  324.     def do_help(self, arg):
  325.         if arg:
  326.             
  327.             try:
  328.                 func = getattr(self, 'help_' + arg)
  329.             except AttributeError:
  330.                 
  331.                 try:
  332.                     doc = getattr(self, 'do_' + arg).__doc__
  333.                     if doc:
  334.                         self.stdout.write('%s\n' % str(doc))
  335.                         return None
  336.                 except AttributeError:
  337.                     pass
  338.  
  339.                 self.stdout.write('%s\n' % str(self.nohelp % (arg,)))
  340.                 return None
  341.  
  342.             func()
  343.         else:
  344.             names = self.get_names()
  345.             cmds_doc = []
  346.             cmds_undoc = []
  347.             help = { }
  348.             for name in names:
  349.                 if name[:5] == 'help_':
  350.                     help[name[5:]] = 1
  351.                     continue
  352.             
  353.             names.sort()
  354.             prevname = ''
  355.             for name in names:
  356.                 if name[:3] == 'do_':
  357.                     if name == prevname:
  358.                         continue
  359.                     
  360.                     prevname = name
  361.                     cmd = name[3:]
  362.                     if cmd in help:
  363.                         cmds_doc.append(cmd)
  364.                         del help[cmd]
  365.                     elif getattr(self, name).__doc__:
  366.                         cmds_doc.append(cmd)
  367.                     else:
  368.                         cmds_undoc.append(cmd)
  369.                 cmd in help
  370.             
  371.             self.stdout.write('%s\n' % str(self.doc_leader))
  372.             self.print_topics(self.doc_header, cmds_doc, 15, 80)
  373.             self.print_topics(self.misc_header, help.keys(), 15, 80)
  374.             self.print_topics(self.undoc_header, cmds_undoc, 15, 80)
  375.  
  376.     
  377.     def print_topics(self, header, cmds, cmdlen, maxcol):
  378.         if cmds:
  379.             self.stdout.write('%s\n' % str(header))
  380.             if self.ruler:
  381.                 self.stdout.write('%s\n' % str(self.ruler * len(header)))
  382.             
  383.             self.columnize(cmds, maxcol - 1)
  384.             self.stdout.write('\n')
  385.         
  386.  
  387.     
  388.     def columnize(self, list, displaywidth = 80):
  389.         '''Display a list of strings as a compact set of columns.
  390.  
  391.         Each column is only as wide as necessary.
  392.         Columns are separated by two spaces (one was not legible enough).
  393.         '''
  394.         if not list:
  395.             self.stdout.write('<empty>\n')
  396.             return None
  397.         
  398.         nonstrings = _[1]
  399.         size = len(list)
  400.         if size == 1:
  401.             self.stdout.write('%s\n' % str(list[0]))
  402.             return None
  403.         
  404.         for nrows in range(1, len(list)):
  405.             ncols = (size + nrows - 1) // nrows
  406.             colwidths = []
  407.             totwidth = -2
  408.             for col in range(ncols):
  409.                 colwidth = 0
  410.                 for row in range(nrows):
  411.                     i = row + nrows * col
  412.                     if i >= size:
  413.                         break
  414.                     
  415.                     x = list[i]
  416.                     colwidth = max(colwidth, len(x))
  417.                 
  418.                 colwidths.append(colwidth)
  419.                 totwidth += colwidth + 2
  420.                 if totwidth > displaywidth:
  421.                     break
  422.                     continue
  423.             
  424.             if totwidth <= displaywidth:
  425.                 break
  426.                 continue
  427.         else:
  428.             nrows = len(list)
  429.             ncols = 1
  430.             colwidths = [
  431.                 0]
  432.         for row in range(nrows):
  433.             texts = []
  434.             for col in range(ncols):
  435.                 i = row + nrows * col
  436.                 if i >= size:
  437.                     x = ''
  438.                 else:
  439.                     x = list[i]
  440.                 texts.append(x)
  441.             
  442.             while texts and not texts[-1]:
  443.                 del texts[-1]
  444.             for col in range(len(texts)):
  445.                 texts[col] = texts[col].ljust(colwidths[col])
  446.             
  447.             self.stdout.write('%s\n' % str('  '.join(texts)))
  448.         
  449.  
  450.  
  451.